home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-03-06 | 691 b | 31 lines | [TEXT/GEOL] |
- Item 1714404 21-Nov-88 14:37
-
- From: BIANCHI1 Bianchi, Curt
-
- To: PASCOE1 Pascoe, Geoff
-
- cc: MACAPP.TECH$ MACAPP Tech
-
- Sub: Response to Outputing to a
-
- Geoff,
-
- There is no method to do what you want (there should be). I think you could do
- it with the following code:
-
- PROCEDURE TTEView.InsertText (theText: Ptr; length: LONGINT);
- BEGIN
- TEInsert(theText, length, fHTE);
- SynchView(kRedraw);
- END;
-
- TEInsert inserts the text at the insert point. SynchView sync's the TEView to
- the TextEdit handle (fHTE).
-
- Let me know if it works.
-
- Curt Bianchi
- Apple Computer
-
-
-